home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Games / ms-0.07 / Makefile < prev    next >
Makefile  |  1995-07-03  |  465b  |  21 lines

  1. #
  2. # Top-level Makefile for MandelSpawn
  3. #
  4. # Some of the subdirectory Makefiles may need editing. 
  5. # Read the INSTALL file for instructions.
  6. #
  7.  
  8. DESTDIR=/usr/skunk
  9.  
  10. all install:
  11.     (cd lib; $(MAKE))
  12.     (cd mslaved; $(MAKE) $@ DESTDIR=$(DESTDIR))
  13.     (cd bms; $(MAKE))
  14.     (cd xms; xmkmf; $(MAKE) includes; $(MAKE) depend; $(MAKE) $@ DESTDIR=$(DESTDIR))
  15.  
  16. clean:
  17.     (cd lib; $(MAKE) spotless)
  18.     (cd mslaved; $(MAKE) spotless)
  19.     (cd bms; $(MAKE) spotless)
  20.     (cd xms; xmkmf; $(MAKE) $@)
  21.